runtime.hchan.qcount (field)
14 uses
runtime (current package)
chan.go#L34: qcount uint // total data in the queue
chan.go#L138: return c.qcount == c.dataqsiz
chan.go#L215: if c.qcount < c.dataqsiz {
chan.go#L226: c.qcount++
chan.go#L434: return atomic.Loaduint(&c.qcount) == 0
chan.go#L511: if c.closed != 0 && c.qcount == 0 {
chan.go#L531: if c.qcount > 0 {
chan.go#L545: c.qcount--
chan.go#L727: return int(c.qcount)
chan.go#L735: return int(c.qcount)
select.go#L260: if c.qcount > 0 {
select.go#L277: if c.qcount < c.dataqsiz {
select.go#L444: c.qcount--
select.go#L465: c.qcount++
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)